home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / wdj1096.zip / ZOLMAN.ZIP / DRAW.ZIP / DRAW.ODL < prev    next >
Text File  |  1996-05-22  |  2KB  |  66 lines

  1. // Draw.odl : type library source for OLE Control project.
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (Draw.tlb) that will become a resource in
  5. // Draw.ocx.
  6.  
  7. #include <olectl.h>
  8.  
  9. [ uuid(023C3760-B40A-11CF-A64F-00A02425FB94), version(1.0),
  10.   helpstring("Draw OLE Control module"), control ]
  11. library DRAWLib
  12. {
  13.     importlib(STDOLE_TLB);
  14.     importlib(STDTYPE_TLB);
  15.  
  16.     //  Primary dispatch interface for CDrawCtrl
  17.  
  18.     [ uuid(023C3761-B40A-11CF-A64F-00A02425FB94),
  19.       helpstring("Dispatch interface for Draw Control"), hidden ]
  20.     dispinterface _DDraw
  21.     {
  22.         properties:
  23.             // NOTE - ClassWizard will maintain property information here.
  24.             //    Use extreme caution when editing this section.
  25.             //{{AFX_ODL_PROP(CDrawCtrl)
  26.             //}}AFX_ODL_PROP
  27.  
  28.         methods:
  29.             // NOTE - ClassWizard will maintain method information here.
  30.             //    Use extreme caution when editing this section.
  31.             //{{AFX_ODL_METHOD(CDrawCtrl)
  32.             //}}AFX_ODL_METHOD
  33.  
  34.             [id(DISPID_ABOUTBOX)] void AboutBox();
  35.     };
  36.  
  37.     //  Event dispatch interface for CDrawCtrl
  38.  
  39.     [ uuid(023C3762-B40A-11CF-A64F-00A02425FB94),
  40.       helpstring("Event interface for Draw Control") ]
  41.     dispinterface _DDrawEvents
  42.     {
  43.         properties:
  44.             //  Event interface has no properties
  45.  
  46.         methods:
  47.             // NOTE - ClassWizard will maintain event information here.
  48.             //    Use extreme caution when editing this section.
  49.             //{{AFX_ODL_EVENT(CDrawCtrl)
  50.             //}}AFX_ODL_EVENT
  51.     };
  52.  
  53.     //  Class information for CDrawCtrl
  54.  
  55.     [ uuid(023C3763-B40A-11CF-A64F-00A02425FB94),
  56.       helpstring("Draw Control"), control ]
  57.     coclass Draw
  58.     {
  59.         [default] dispinterface _DDraw;
  60.         [default, source] dispinterface _DDrawEvents;
  61.     };
  62.  
  63.  
  64.     //{{AFX_APPEND_ODL}}
  65. };
  66.